home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gxccman.c < prev    next >
C/C++ Source or Header  |  1997-07-02  |  24KB  |  764 lines

  1. /* Copyright (C) 1989, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gxccman.c */
  20. /* Character cache management routines for Ghostscript library */
  21. #include "gx.h"
  22. #include "memory_.h"
  23. #include "gpcheck.h"
  24. #include "gserrors.h"
  25. #include "gsstruct.h"
  26. #include "gsbitops.h"
  27. #include "gsutil.h"            /* for gs_next_ids */
  28. #include "gxfixed.h"
  29. #include "gxmatrix.h"
  30. #include "gzstate.h"
  31. #include "gzpath.h"
  32. #include "gxdevice.h"
  33. #include "gxdevmem.h"
  34. #include "gxchar.h"
  35. #include "gxfont.h"
  36. #include "gxfcache.h"
  37. #include "gxxfont.h"
  38.  
  39. /* Define the descriptors for the cache structures. */
  40. private_st_cached_fm_pair();
  41. private_st_cached_fm_pair_elt();
  42. /*private_st_cached_char();*/        /* unused */
  43. private_st_cached_char_ptr();        /* unused */
  44. private_st_cached_char_ptr_elt();
  45. /* GC procedures */
  46. /* We do all the work in font_dir_enum/reloc_ptrs in gsfont.c. */
  47. /* See gxfcache.h for details. */
  48. private ENUM_PTRS_BEGIN(cc_ptr_enum_ptrs) return 0;
  49. ENUM_PTRS_END
  50. private RELOC_PTRS_BEGIN(cc_ptr_reloc_ptrs) {
  51. } RELOC_PTRS_END
  52.  
  53. /* Forward references */
  54. private gx_xfont *lookup_xfont_by_name(P6(gx_device *, gx_xfont_procs *, gs_font_name *, int, const cached_fm_pair *, const gs_matrix *));
  55. private cached_char *alloc_char(P2(gs_font_dir *, ulong));
  56. private cached_char *alloc_char_in_chunk(P2(gs_font_dir *, ulong));
  57. private void hash_remove_cached_char(P2(gs_font_dir *, uint));
  58. private void shorten_cached_char(P3(gs_font_dir *, cached_char *, uint));
  59.  
  60. /* ====== Initialization ====== */
  61.  
  62. /* Allocate and initialize the character cache elements of a font directory. */
  63. int
  64. gx_char_cache_alloc(gs_memory_t *mem, register gs_font_dir *pdir,
  65.   uint bmax, uint mmax, uint cmax, uint upper)
  66. {    /* Since we use open hashing, we must increase cmax somewhat. */
  67.     uint chsize = (cmax + (cmax >> 1)) | 31;
  68.     cached_fm_pair *mdata;
  69.     cached_char **chars;
  70.  
  71.     /* Round up chsize to a power of 2. */
  72.     while ( chsize & (chsize + 1) )
  73.       chsize |= chsize >> 1;
  74.     chsize++;
  75.     mdata = gs_alloc_struct_array(mem, mmax, cached_fm_pair,
  76.                       &st_cached_fm_pair_element,
  77.                       "font_dir_alloc(mdata)");
  78.     chars = gs_alloc_struct_array(mem, chsize, cached_char *,
  79.                       &st_cached_char_ptr_element,
  80.                       "font_dir_alloc(chars)");
  81.     if ( mdata == 0 || chars == 0 )
  82.       {    gs_free_object(mem, chars, "font_dir_alloc(chars)");
  83.         gs_free_object(mem, mdata, "font_dir_alloc(mdata)");
  84.         return_error(gs_error_VMerror);
  85.       }
  86.     pdir->fmcache.mmax = mmax;
  87.     pdir->fmcache.mdata = mdata;
  88.     pdir->ccache.memory = mem;
  89.     pdir->ccache.bmax = bmax;
  90.     pdir->ccache.cmax = cmax;
  91.     pdir->ccache.lower = upper / 10;
  92.     pdir->ccache.upper = upper;
  93.     pdir->ccache.table = chars;
  94.     pdir->ccache.table_mask = chsize - 1;
  95.     gx_char_cache_init(pdir);
  96.     return 0;
  97. }
  98.  
  99. /* Initialize the character cache. */
  100. void
  101. gx_char_cache_init(register gs_font_dir *dir)
  102. {    int i;
  103.     cached_fm_pair *pair;
  104.     char_cache_chunk *cck =
  105.       (char_cache_chunk *)gs_malloc(1, sizeof(char_cache_chunk),
  106.                     "initial_chunk");
  107.  
  108.     dir->fmcache.msize = 0;
  109.     dir->fmcache.mnext = 0;
  110.     gx_bits_cache_chunk_init(cck, NULL, 0);
  111.     gx_bits_cache_init((gx_bits_cache *)&dir->ccache, cck);
  112.     dir->ccache.bspace = 0;
  113.     memset((char *)dir->ccache.table, 0,
  114.            (dir->ccache.table_mask + 1) * sizeof(cached_char *));
  115.     for ( i = 0, pair = dir->fmcache.mdata;
  116.           i < dir->fmcache.mmax; i++, pair++
  117.         )
  118.       {    pair->index = i;
  119.         fm_pair_init(pair);
  120.       }
  121. }
  122.  
  123. /* ====== Purging ====== */
  124.  
  125. /* Purge from the character cache all entries selected by */
  126. /* a client-supplied procedure. */
  127. void
  128. gx_purge_selected_cached_chars(gs_font_dir *dir,
  129.   bool (*proc)(P2(cached_char *, void *)), void *proc_data)
  130. {    int chi;
  131.     int cmax = dir->ccache.table_mask;
  132.  
  133.     for ( chi = 0; chi <= cmax; )
  134.     {    cached_char *cc = dir->ccache.table[chi];
  135.         if ( cc != 0 && (*proc)(cc, proc_data) )
  136.           {    hash_remove_cached_char(dir, chi);
  137.             gx_free_cached_char(dir, cc);
  138.           }
  139.         else
  140.           chi++;
  141.     }
  142. }
  143.  
  144. /* ====== Font-level routines ====== */
  145.  
  146. /* Add a font/matrix pair to the cache. */
  147. /* (This is only exported for gxccache.c.) */
  148. cached_fm_pair *
  149. gx_add_fm_pair(register gs_font_dir *dir, gs_font *font, const gs_uid *puid,
  150.   const gs_state *pgs)
  151. {    register cached_fm_pair *pair =
  152.       dir->fmcache.mdata + dir->fmcache.mnext;
  153.     cached_fm_pair *mend =
  154.       dir->fmcache.mdata + dir->fmcache.mmax;
  155.  
  156.     if ( dir->fmcache.msize == dir->fmcache.mmax ) /* cache is full */
  157.     {    /* Prefer an entry with num_chars == 0, if any. */
  158.         int count;
  159.         for ( count = dir->fmcache.mmax;
  160.               --count >= 0 && pair->num_chars != 0;
  161.             )
  162.           if ( ++pair == mend )
  163.             pair = dir->fmcache.mdata;
  164.         gs_purge_fm_pair(dir, pair, 0);
  165.     }
  166.     else
  167.     {    /* Look for an empty entry.  (We know there is one.) */
  168.         while ( !fm_pair_is_free(pair) )
  169.           if ( ++pair == mend )
  170.             pair = dir->fmcache.mdata;
  171.     }
  172.     dir->fmcache.msize++;
  173.     dir->fmcache.mnext = pair + 1 - dir->fmcache.mdata;
  174.     if ( dir->fmcache.mnext == dir->fmcache.mmax )
  175.         dir->fmcache.mnext = 0;
  176.     pair->font = font;
  177.     pair->UID = *puid;
  178.     pair->FontType = font->FontType;
  179.     /* The OSF/1 compiler doesn't like casting a pointer to */
  180.     /* a shorter int.... */
  181.     pair->hash = (uint)(ulong)pair % 549;    /* scramble bits */
  182.     pair->mxx = pgs->char_tm.xx, pair->mxy = pgs->char_tm.xy;
  183.     pair->myx = pgs->char_tm.yx, pair->myy = pgs->char_tm.yy;
  184.     pair->num_chars = 0;
  185.     pair->xfont_tried = false;
  186.     pair->xfont = 0;
  187.     if_debug8('k', "[k]adding pair 0x%lx: font=0x%lx [%g %g %g %g] UID %ld, 0x%lx\n",
  188.           (ulong)pair, (ulong)font,
  189.           pair->mxx, pair->mxy, pair->myx, pair->myy,
  190.           (long)pair->UID.id, (ulong)pair->UID.xvalues);
  191.     return pair;
  192. }
  193.  
  194. /* Look up the xfont for a font/matrix pair. */
  195. /* (This is only exported for gxccache.c.) */
  196. void
  197. gx_lookup_xfont(const gs_state *pgs, cached_fm_pair *pair, int encoding_index)
  198. {    gx_device *dev = gs_currentdevice(pgs);
  199.     gx_device *fdev = (*dev_proc(dev, get_xfont_device))(dev);
  200.     gs_font *font = pair->font;
  201.     gx_xfont_procs *procs = (*dev_proc(fdev, get_xfont_procs))(fdev);
  202.     gx_xfont *xf = 0;
  203.  
  204.     /* We mustn't attempt to use xfonts for stroked characters, */
  205.     /* because such characters go outside their bounding box. */
  206.     if ( procs != 0 && font->PaintType == 0 )
  207.     {    gs_matrix mat;
  208.  
  209.         mat.xx = pair->mxx, mat.xy = pair->mxy;
  210.         mat.yx = pair->myx, mat.yy = pair->myy;
  211.         mat.tx = 0, mat.ty = 0;
  212.         /* xfonts can outlive their invocations, */
  213.         /* but restore purges them properly. */
  214.         pair->memory = pgs->memory;
  215.         if ( font->key_name.size != 0 )
  216.             xf = lookup_xfont_by_name(fdev, procs,
  217.                 &font->key_name, encoding_index,
  218.                 pair, &mat);
  219. #define font_name_eq(pfn1,pfn2)\
  220.   ((pfn1)->size == (pfn2)->size && (pfn1)->size != 0 &&\
  221.    !memcmp((char *)(pfn1)->chars, (char *)(pfn2)->chars, (pfn1)->size))
  222.         if ( xf == 0 && font->font_name.size != 0 &&
  223.                  /* Avoid redundant lookup */
  224.              !font_name_eq(&font->font_name, &font->key_name)
  225.            )
  226.             xf = lookup_xfont_by_name(fdev, procs,
  227.                 &font->font_name, encoding_index,
  228.                 pair, &mat);
  229.         if ( xf == 0 && font->FontType != ft_composite &&
  230.              uid_is_valid(&((gs_font_base *)font)->UID)
  231.            )
  232.         {    /* Look for an original font with the same UID. */
  233.             gs_font_dir *pdir = font->dir;
  234.             gs_font *pfont;
  235.  
  236.             for ( pfont = pdir->orig_fonts; pfont != 0;
  237.                   pfont = pfont->next
  238.                 )
  239.             {    if ( pfont->FontType != ft_composite &&
  240.                      uid_equal(&((gs_font_base *)pfont)->UID,
  241.                            &((gs_font_base *)font)->UID) &&
  242.                      pfont->key_name.size != 0 &&
  243.                      !font_name_eq(&font->key_name,
  244.                                &pfont->key_name)
  245.                    )
  246.                 {    xf = lookup_xfont_by_name(fdev, procs,
  247.                         &pfont->key_name,
  248.                         encoding_index, pair, &mat);
  249.                     if ( xf != 0 )
  250.                       break;
  251.                 }
  252.             }
  253.         }
  254.     }
  255.     pair->xfont = xf;
  256. }
  257.  
  258. /* ------ Internal routines ------ */
  259.  
  260. /* Purge from the caches all references to a given font/matrix pair, */
  261. /* or just characters that depend on its xfont. */
  262. #define cpair ((cached_fm_pair *)vpair)
  263. private bool
  264. purge_fm_pair_char(cached_char *cc, void *vpair)
  265. {    return cc_pair(cc) == cpair;
  266. }
  267. private bool
  268. purge_fm_pair_char_xfont(cached_char *cc, void *vpair)
  269. {    return cc_pair(cc) == cpair && cpair->xfont == 0 && !cc_has_bits(cc);
  270. }
  271. #undef cpair
  272. void
  273. gs_purge_fm_pair(gs_font_dir *dir, cached_fm_pair *pair, int xfont_only)
  274. {    if_debug2('k', "[k]purging pair 0x%lx%s\n",
  275.           (ulong)pair, (xfont_only ? " (xfont only)" : ""));
  276.     if ( pair->xfont != 0 )
  277.       {    (*pair->xfont->common.procs->release)(pair->xfont,
  278.                               pair->memory);
  279.         pair->xfont_tried = false;
  280.         pair->xfont = 0;
  281.       }
  282.     gx_purge_selected_cached_chars(dir,
  283.                        (xfont_only ? purge_fm_pair_char_xfont :
  284.                     purge_fm_pair_char),
  285.                        pair);
  286.     if ( !xfont_only )
  287.       {
  288. #ifdef DEBUG
  289.         if ( pair->num_chars != 0 )
  290.           {    lprintf1("Error in gs_purge_fm_pair: num_chars =%d\n",
  291.                  pair->num_chars);
  292.           }
  293. #endif
  294.         fm_pair_set_free(pair);
  295.         dir->fmcache.msize--;
  296.       }
  297. }
  298.  
  299. /* Look up an xfont by name. */
  300. /* The caller must already have done get_xfont_device to get the proper */
  301. /* device to pass as the first argument to lookup_font. */
  302. private gx_xfont *
  303. lookup_xfont_by_name(gx_device *fdev, gx_xfont_procs *procs,
  304.   gs_font_name *pfstr, int encoding_index, const cached_fm_pair *pair,
  305.   const gs_matrix *pmat)
  306. {    gx_xfont *xf;
  307.     if_debug5('k', "[k]lookup xfont %s [%g %g %g %g]\n",
  308.           pfstr->chars, pmat->xx, pmat->xy, pmat->yx, pmat->yy);
  309.     xf = (*procs->lookup_font)(fdev,
  310.                    &pfstr->chars[0], pfstr->size,
  311.                    encoding_index, &pair->UID,
  312.                    pmat, pair->memory);
  313.     if_debug1('k', "[k]... xfont=0x%lx\n", (ulong)xf);
  314.     return xf;
  315. }
  316.  
  317. /* ====== Character-level routines ====== */
  318.  
  319. /*
  320.  * Allocate storage for caching a rendered character with possible
  321.  * oversampling and/or alpha.  Return the cached_char if OK, 0 if too big.
  322.  * If the character is being oversampled, make the size decision
  323.  * on the basis of the final (scaled-down) size.
  324.  *
  325.  * The iwidth and iheight parameters include scaling up for oversampling
  326.  * (multiplication by 1 << pscale->{x,y}.)
  327.  * The depth parameter is the final number of alpha bits;
  328.  * depth <= x scale * y scale.
  329.  * If dev == NULL, this is an xfont-only entry.
  330.  * If dev != NULL, set up the memory device(s); in this case, if dev2 is
  331.  * not NULL, dev should be an alpha-buffer device with dev2 (an alpha
  332.  * device) as target.
  333.  */
  334. cached_char *
  335. gx_alloc_char_bits(gs_font_dir *dir, gx_device_memory *dev,
  336.   gx_device_memory *dev2, ushort iwidth, ushort iheight,
  337.   const gs_log2_scale_point *pscale, int depth)
  338. {    int log2_xscale = pscale->x;
  339.     int log2_yscale = pscale->y;
  340.     int log2_depth = depth >> 1;    /* works for 1,2,4 */
  341.     uint nwidth_bits = (iwidth >> log2_xscale) << log2_depth;
  342.     ulong isize, icdsize;
  343.     uint iraster;
  344.     cached_char *cc;
  345.     gx_device_memory mdev;
  346.     gx_device_memory *pdev = dev;
  347.     gx_device_memory *pdev2;
  348.  
  349.     if ( dev == NULL )
  350.     {    mdev.memory = 0;
  351.         mdev.target = 0;
  352.         pdev = &mdev;
  353.     }
  354.     pdev2 = (dev2 == 0 ? pdev : dev2);
  355.  
  356.     /* Compute the scaled-down bitmap size, and test against */
  357.     /* the maximum cachable character size. */
  358.  
  359.     iraster = bitmap_raster(nwidth_bits);
  360.     if ( iraster != 0 && iheight >> log2_yscale > dir->ccache.upper / iraster )
  361.     {    if_debug5('k', "[k]no cache bits: scale=%dx%d, raster/scale=%u, height/scale=%u, upper=%u\n",
  362.               1 << log2_xscale, 1 << log2_yscale,
  363.               iraster, iheight, dir->ccache.upper);
  364.         return 0;        /* too big */
  365.     }
  366.  
  367.     /* Compute the actual bitmap size(s) and allocate the bits. */
  368.  
  369.     if ( dev2 == 0 )
  370.       {    /* Render to a full (possibly oversampled) bitmap; */
  371.         /* compress (if needed) when done. */
  372.         gs_make_mem_mono_device(pdev, pdev->memory, pdev->target);
  373.         pdev->width = iwidth;
  374.         pdev->height = iheight;
  375.         isize = gdev_mem_bitmap_size(pdev);
  376.       }
  377.     else
  378.       {    /* Use an alpha-buffer device to compress as we go. */
  379.         gs_make_mem_alpha_device(dev2, dev2->memory, NULL, depth);
  380.         dev2->width = iwidth >> log2_xscale;
  381.         dev2->height = iheight >> log2_yscale;
  382.         gs_make_mem_abuf_device(dev, dev->memory, (gx_device *)dev2,
  383.                     pscale, depth, 0);
  384.         dev->width = iwidth;
  385.         dev->height = 2 << log2_yscale;
  386.         isize = gdev_mem_bitmap_size(dev) +
  387.           gdev_mem_bitmap_size(dev2);
  388.       }
  389.     icdsize = isize + sizeof_cached_char;
  390.     cc = alloc_char(dir, icdsize);
  391.     if ( cc == 0 )
  392.       return 0;
  393.     if_debug4('k', "[k]adding char 0x%lx:%u(%u,%u)\n",
  394.           (ulong)cc, (uint)icdsize, iwidth, iheight);
  395.  
  396.     /* Fill in the entry. */
  397.  
  398.     cc_set_depth(cc, depth);
  399.     cc->xglyph = gx_no_xglyph;
  400.     /* Set the width and height to those of the device. */
  401.     /* Note that if we are oversampling without an alpha buffer. */
  402.     /* these are not the final unscaled dimensions. */
  403.     cc->width = pdev2->width;
  404.     cc->height = pdev2->height;
  405.     cc->shift = 0;
  406.     cc_set_raster(cc, gdev_mem_raster(pdev2));
  407.     cc_set_pair_only(cc, 0);    /* not linked in yet */
  408.     cc->id = gx_no_bitmap_id;
  409.  
  410.     /* Open the cache device(s). */
  411.  
  412.     if ( dev2 )
  413.       {    /* The second device is an alpha device that targets */
  414.         /* the real storage for the character. */
  415.         byte *bits = cc_bits(cc);
  416.         uint bsize = (uint)gdev_mem_bitmap_size(dev2);
  417.  
  418.         memset(bits, 0, bsize);
  419.         dev2->base = bits;
  420.         (*dev_proc(dev2, open_device))((gx_device *)dev2);
  421.         dev->base = bits + bsize;
  422.         (*dev_proc(dev, open_device))((gx_device *)dev);
  423.       }
  424.     else if ( dev )
  425.       gx_open_cache_device(dev, cc);
  426.  
  427.     return cc;
  428. }
  429.  
  430. /* Open the cache device. */
  431. void
  432. gx_open_cache_device(gx_device_memory *dev, cached_char *cc)
  433. {    byte *bits = cc_bits(cc);
  434.  
  435.     dev->width = cc->width;
  436.     dev->height = cc->height;
  437.     memset((char *)bits, 0, (uint)gdev_mem_bitmap_size(dev));
  438.     dev->base = bits;
  439.     (*dev_proc(dev, open_device))((gx_device *)dev);    /* initialize */
  440. }
  441.  
  442. /* Remove a character from the cache. */
  443. void
  444. gx_free_cached_char(gs_font_dir *dir, cached_char *cc)
  445. {    char_cache_chunk *cck = cc->chunk;
  446.  
  447.     dir->ccache.chunks = cck;
  448.     dir->ccache.cnext = (byte *)cc - cck->data;
  449.     if ( cc_pair(cc) != 0 )
  450.        {    /* might be allocated but not added to table yet */
  451.         cc_pair(cc)->num_chars--;
  452.        }
  453.     if_debug2('k', "[k]freeing char 0x%lx, pair=0x%lx\n",
  454.           (ulong)cc, (ulong)cc_pair(cc));
  455.     gx_bits_cache_free((gx_bits_cache *)&dir->ccache, &cc->head, cck);
  456. }
  457.  
  458. /* Add a character to the cache */
  459. void
  460. gx_add_cached_char(gs_font_dir *dir, gx_device_memory *dev,
  461.   cached_char *cc, cached_fm_pair *pair, const gs_log2_scale_point *pscale)
  462. {    if_debug5('k', "[k]chaining char 0x%lx: pair=0x%lx, glyph=0x%lx, wmode=%d, depth=%d\n",
  463.           (ulong)cc, (ulong)pair, (ulong)cc->code,
  464.           cc->wmode, cc_depth(cc));
  465.     if ( dev != NULL )
  466.       {    static const gs_log2_scale_point no_scale = { 0, 0 };
  467.         /* Close the device, to flush the alpha buffer if any. */
  468.         (*dev_proc(dev, close_device))((gx_device *)dev);
  469.         gx_add_char_bits(dir, cc,
  470.                  (gs_device_is_abuf((gx_device *)dev) ?
  471.                   &no_scale : pscale));
  472.       }
  473.     /* Add the new character to the hash table. */
  474.     {    uint chi = chars_head_index(cc->code, pair);
  475.         while ( dir->ccache.table[chi &= dir->ccache.table_mask] != 0 )
  476.           chi++;
  477.         dir->ccache.table[chi] = cc;
  478.         cc_set_pair(cc, pair);
  479.         pair->num_chars++;
  480.     }
  481. }
  482.  
  483. /* Adjust the bits of a newly-rendered character, by unscaling */
  484. /* and compressing or converting to alpha values if necessary. */
  485. void
  486. gx_add_char_bits(gs_font_dir *dir, cached_char *cc,
  487.   const gs_log2_scale_point *plog2_scale)
  488. {    int log2_x = plog2_scale->x, log2_y = plog2_scale->y;
  489.     uint raster = cc_raster(cc);
  490.     byte *bits = cc_bits(cc);
  491.     int depth = cc_depth(cc);
  492.     int log2_depth = depth >> 1;    /* works for 1,2,4 */
  493.     uint nwidth_bits, nraster;
  494.     gs_int_rect bbox;
  495.  
  496. #ifdef DEBUG
  497.     if ( cc->width % (1 << log2_x) != 0 ||
  498.          cc->height % (1 << log2_y) != 0
  499.        )
  500.       {    lprintf4("size %d,%d not multiple of scale %d,%d!\n",
  501.              cc->width, cc->height,
  502.              1 << log2_x, 1 << log2_y);
  503.         cc->width &= -1 << log2_x;
  504.         cc->height &= -1 << log2_y;
  505.       }
  506. #endif
  507.  
  508.     /*
  509.      * Compute the bounding box before compressing.
  510.      * We may have to scan more bits, but this is a lot faster than
  511.      * compressing the white space.  Note that all bbox values are
  512.      * in bits, not pixels.
  513.      */
  514.  
  515.     bits_bounding_box(bits, cc->height, raster, &bbox);
  516.  
  517.     /*
  518.      * If the character was oversampled, compress it now.
  519.      * In this case we know that log2_depth <= log2_x.
  520.      * If the character was not oversampled, or if we converted
  521.      * oversampling to alpha dynamically (using an alpha buffer
  522.      * intermediate device), log2_x and log2_y are both zero,
  523.      * but in the latter case we may still have depth > 1.
  524.      */
  525.  
  526.     if ( (log2_x | log2_y) != 0 )
  527.       {    if_debug5('k', "[k]compressing %dx%d by %dx%d to depth=%d\n",
  528.               cc->width, cc->height, 1 << log2_x, 1 << log2_y,
  529.               depth);
  530.         if ( gs_debug_c('K') )
  531.           debug_dump_bitmap(bits, raster, cc->height,
  532.                     "[K]uncompressed bits");
  533.         /* Truncate/round the bbox to a multiple of the scale. */
  534.         { int scale_x = 1 << log2_x;
  535.           bbox.p.x &= -scale_x;
  536.           bbox.q.x = (bbox.q.x + scale_x - 1) & -scale_x;
  537.         }
  538.         { int scale_y = 1 << log2_y;
  539.           bbox.p.y &= -scale_y;
  540.           bbox.q.y = (bbox.q.y + scale_y - 1) & -scale_y;
  541.         }
  542.         cc->width = (bbox.q.x - bbox.p.x) >> log2_x;
  543.         cc->height = (bbox.q.y - bbox.p.y) >> log2_y;
  544.         nwidth_bits = cc->width << log2_depth;
  545.         nraster = bitmap_raster(nwidth_bits);
  546.         bits_compress_scaled(bits + raster * bbox.p.y, bbox.p.x,
  547.                      cc->width << log2_x,
  548.                      cc->height << log2_y,
  549.                      raster,
  550.                      bits, nraster, plog2_scale, log2_depth);
  551.         bbox.p.x >>= log2_x;
  552.         bbox.p.y >>= log2_y;
  553.       }
  554.     else
  555.       {    /* No oversampling, just remove white space. */
  556.         const byte *from = bits + raster * bbox.p.y + (bbox.p.x >> 3);
  557.  
  558.         cc->height = bbox.q.y - bbox.p.y;
  559.         /*
  560.          * We'd like to trim off left and right blank space,
  561.          * but currently we're only willing to move bytes, not bits.
  562.          * (If we ever want to do better, we must remember that
  563.          * we can only trim whole pixels, and a pixel may occupy
  564.          * more than one bit.)
  565.          */
  566.         bbox.p.x &= ~7;            /* adjust to byte boundary */
  567.         bbox.p.x >>= log2_depth;    /* bits => pixels */
  568.         bbox.q.x = (bbox.q.x + depth - 1) >> log2_depth;  /* ditto */
  569.         cc->width = bbox.q.x - bbox.p.x;
  570.         nwidth_bits = cc->width << log2_depth;
  571.         nraster = bitmap_raster(nwidth_bits);
  572.         if ( bbox.p.x != 0 || nraster != raster )
  573.           {    /* Move the bits down and over. */
  574.             byte *to = bits;
  575.             uint n = cc->height;
  576.             /* We'd like to move only 
  577.                 uint nbytes = (nwidth_bits + 7) >> 3;
  578.              * bytes per scan line, but unfortunately this drops
  579.              * the guaranteed zero padding at the end.
  580.              */
  581.  
  582.             for ( ; n--; from += raster, to += nraster )
  583.               memmove(to, from, /*nbytes*/nraster);
  584.           }
  585.         else if ( bbox.p.y != 0 )
  586.           {    /* Just move the bits down. */
  587.             memmove(bits, from, raster * cc->height);
  588.           }
  589.       }        
  590.  
  591.     /* Adjust the offsets to account for removed white space. */
  592.  
  593.     cc->offset.x -= int2fixed(bbox.p.x);
  594.     cc->offset.y -= int2fixed(bbox.p.y);
  595.  
  596.     /* Discard the memory device overhead that follows the bits, */
  597.     /* and any space reclaimed from unscaling or compression. */
  598.  
  599.     cc_set_raster(cc, nraster);
  600.     {    uint diff = round_down(cc->head.size - sizeof_cached_char -
  601.                          nraster * cc->height,
  602.                        align_cached_char_mod);
  603.  
  604.         if ( diff >= sizeof(cached_char_head) )
  605.         {    shorten_cached_char(dir, cc, diff);
  606.             if_debug2('K', "[K]shortening char 0x%lx by %u (adding)\n",
  607.                   (ulong)cc, diff);
  608.         }
  609.     }
  610.  
  611.     /* Assign a bitmap id. */
  612.  
  613.     cc->id = gs_next_ids(1);
  614. }
  615.  
  616. /* Purge from the caches all references to a given font. */
  617. void
  618. gs_purge_font_from_char_caches(gs_font_dir *dir, const gs_font *font)
  619. {    cached_fm_pair *pair = dir->fmcache.mdata;
  620.     int count = dir->fmcache.mmax;
  621.  
  622.     if_debug1('k', "[k]purging font 0x%lx\n",
  623.           (ulong)font);
  624.     while ( count-- )
  625.     {    if ( pair->font == font )
  626.         {    if ( uid_is_valid(&pair->UID) )
  627.             {    /* Keep the entry. */
  628.                 pair->font = 0;
  629.             }
  630.             else
  631.                 gs_purge_fm_pair(dir, pair, 0);
  632.         }
  633.         pair++;
  634.     }
  635. }
  636.  
  637. /* ------ Internal routines ------ */
  638.  
  639. /* Allocate data space for a cached character, adding a new chunk if needed. */
  640. private cached_char *
  641. alloc_char(gs_font_dir *dir, ulong icdsize)
  642. {    /* Try allocating at the current position first. */
  643.     cached_char *cc = alloc_char_in_chunk(dir, icdsize);
  644.  
  645.     if ( cc == 0 )
  646.     {    if ( dir->ccache.bspace < dir->ccache.bmax )
  647.         {    /* Allocate another chunk. */
  648.             char_cache_chunk *cck_prev = dir->ccache.chunks;
  649.             char_cache_chunk *cck;
  650.             uint cksize = dir->ccache.bmax / 5 + 1;
  651.             uint tsize = dir->ccache.bmax - dir->ccache.bspace;
  652.             byte *cdata;
  653.  
  654.             if ( cksize > tsize )
  655.               cksize = tsize;
  656.             if ( icdsize + sizeof(cached_char_head) > cksize )
  657.             {    if_debug2('k', "[k]no cache bits: cdsize+head=%lu, cksize=%u\n",
  658.                       icdsize + sizeof(cached_char_head),
  659.                       cksize);
  660.                 return 0;        /* wouldn't fit */
  661.             }
  662.             cck = (char_cache_chunk *)gs_malloc(1, sizeof(*cck),
  663.                             "char cache chunk");
  664.             if ( cck == 0 )
  665.               return 0;
  666.             cdata = (byte *)gs_malloc(cksize, 1,
  667.                           "char cache chunk");
  668.             if ( cdata == 0 )
  669.             {    gs_free((char *)cck, 1, sizeof(*cck),
  670.                     "char cache chunk");
  671.                 return 0;
  672.             }
  673.             gx_bits_cache_chunk_init(cck, cdata, cksize);
  674.             cck->next = cck_prev->next;
  675.             cck_prev->next = cck;
  676.             dir->ccache.bspace += cksize;
  677.             dir->ccache.chunks = cck;
  678.         }
  679.         else
  680.         {    /* Cycle through existing chunks. */
  681.             char_cache_chunk *cck_init = dir->ccache.chunks;
  682.             char_cache_chunk *cck = cck_init;
  683.             while ( (dir->ccache.chunks = cck = cck->next) != cck_init )
  684.               {    dir->ccache.cnext = 0;
  685.                 cc = alloc_char_in_chunk(dir, icdsize);
  686.                 if ( cc != 0 )
  687.                   return cc;
  688.               }
  689.         }
  690.         dir->ccache.cnext = 0;
  691.         cc = alloc_char_in_chunk(dir, icdsize);
  692.     }
  693.     return cc;
  694. }
  695.  
  696. /* Allocate a character in the current chunk. */
  697. private cached_char *
  698. alloc_char_in_chunk(gs_font_dir *dir, ulong icdsize)
  699. {    char_cache_chunk *cck = dir->ccache.chunks;
  700.     cached_char_head *cch;
  701. #define cc ((cached_char *)cch)
  702.  
  703.     while ( gx_bits_cache_alloc((gx_bits_cache *)&dir->ccache,
  704.                     icdsize, &cch) < 0
  705.           )
  706.       {    if ( cch == 0 )
  707.           {    /* Not enough room to allocate in this chunk. */
  708.             return 0;
  709.           }
  710.         {    /* Free the character */
  711.             cached_fm_pair *pair = cc_pair(cc);
  712.  
  713.             if ( pair != 0 )
  714.               {    uint chi = chars_head_index(cc->code, pair);
  715.                 while ( dir->ccache.table[chi & dir->ccache.table_mask] != cc )
  716.                   chi++;
  717.                 hash_remove_cached_char(dir, chi);
  718.               }
  719.             gx_free_cached_char(dir, cc);
  720.         }
  721.     }
  722.     cc->chunk = cck;
  723.     cc->loc = (byte *)cc - cck->data;
  724.     return cc;
  725. #undef cc
  726. }
  727.  
  728. /* Remove the cached_char at a given index in the hash table. */
  729. /* In order not to slow down lookup, we relocate following entries. */
  730. private void
  731. hash_remove_cached_char(gs_font_dir *dir, uint chi)
  732. {    uint mask = dir->ccache.table_mask;
  733.     uint from = ((chi &= mask) + 1) & mask;
  734.     cached_char *cc;
  735.  
  736.     dir->ccache.table[chi] = 0;
  737.     while ( (cc = dir->ccache.table[from]) != 0 )
  738.       {    /* Loop invariants: chars[chi] == 0; */
  739.         /* chars[chi+1..from] != 0. */
  740.         uint fchi = chars_head_index(cc->code, cc_pair(cc));
  741.  
  742.         /* If chi <= fchi < from, we relocate the character. */
  743.         /* Note that '<=' must take wraparound into account. */
  744.         if ( (chi < from ? chi <= fchi && fchi < from :
  745.               chi <= fchi || fchi < from)
  746.            )
  747.           {    dir->ccache.table[chi] = cc;
  748.             dir->ccache.table[from] = 0;
  749.             chi = from;
  750.           }
  751.         from = (from + 1) & mask;
  752.       }
  753. }
  754.  
  755. /* Shorten a cached character. */
  756. /* diff >= sizeof(cached_char_head). */
  757. private void
  758. shorten_cached_char(gs_font_dir *dir, cached_char *cc, uint diff)
  759. {    gx_bits_cache_shorten((gx_bits_cache *)&dir->ccache, &cc->head,
  760.                   diff, cc->chunk);
  761.     if_debug2('K', "[K]shortening creates free block 0x%lx(%u)\n",
  762.           (ulong)((byte *)cc + cc->head.size), diff);
  763. }
  764.